crypto/internal/nistec.P384Point.x (field)

24 uses

	crypto/internal/nistec (current package)
		p384.go#L24: 	x, y, z *fiat.P384Element
		p384.go#L30: 		x: new(fiat.P384Element),
		p384.go#L38: 	p.x.SetBytes([]byte{0xaa, 0x87, 0xca, 0x22, 0xbe, 0x8b, 0x5, 0x37, 0x8e, 0xb1, 0xc7, 0x1e, 0xf3, 0x20, 0xad, 0x74, 0x6e, 0x1d, 0x3b, 0x62, 0x8b, 0xa7, 0x9b, 0x98, 0x59, 0xf7, 0x41, 0xe0, 0x82, 0x54, 0x2a, 0x38, 0x55, 0x2, 0xf2, 0x5d, 0xbf, 0x55, 0x29, 0x6c, 0x3a, 0x54, 0x5e, 0x38, 0x72, 0x76, 0xa, 0xb7})
		p384.go#L46: 	p.x.Set(q.x)
		p384.go#L75: 		p.x.Set(x)
		p384.go#L100: 		p.x.Set(x)
		p384.go#L158: 	x := new(fiat.P384Element).Mul(p.x, zinv)
		p384.go#L182: 	x := new(fiat.P384Element).Mul(p.x, zinv)
		p384.go#L203: 	x := new(fiat.P384Element).Mul(p.x, zinv)
		p384.go#L219: 	t0 := new(fiat.P384Element).Mul(p1.x, p2.x)  // t0 := X1 * X2
		p384.go#L222: 	t3 := new(fiat.P384Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p384.go#L223: 	t4 := new(fiat.P384Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p384.go#L232: 	x3.Add(p1.x, p1.z)                           // X3 := X1 + Z1
		p384.go#L233: 	y3 := new(fiat.P384Element).Add(p2.x, p2.z)  // Y3 := X2 + Z2
		p384.go#L263: 	q.x.Set(x3)
		p384.go#L274: 	t0 := new(fiat.P384Element).Square(p.x)      // t0 := X ^ 2
		p384.go#L277: 	t3 := new(fiat.P384Element).Mul(p.x, p.y)    // t3 := X * Y
		p384.go#L279: 	z3 := new(fiat.P384Element).Mul(p.x, p.z)    // Z3 := X * Z
		p384.go#L309: 	q.x.Set(x3)
		p384.go#L317: 	q.x.Select(p1.x, p2.x, cond)